if (window.location.href.startsWith("https://lk.dudinschool.ru/teach/control/stream/view/")) {
    const style = document.createElement("style");
    style.textContent = `
        .stream-table {
            counter-reset: stream-table;
        }
.stream-table tbody tr:not(.no-public) td:before {
            content: ' ' counter(stream-table);
            font-family: var(--font-main), sans-serif !important;
            font-style: normal;
            font-weight: 700;
            font-size: 14px;
            line-height: 120%;
            color: var(--color-white);
            width: max-content;
            text-align: center;
            padding: 5px 10px;
            background: var(--color-main);
            border-radius: 100px;
            counter-increment: stream-table;
        }
        .stream-table tbody tr td {
            height: 400px;
        }
        /*.stream-table:before {
            content: "Модули курса";
            font-family: var(--font-main), sans-serif !important;
            font-style: normal;
            font-weight: 700;
            font-size: 36px;
            line-height: 120%;
            color: var(--color-font);
        }*/
    `;
    document.head.appendChild(style);
} 